home *** CD-ROM | disk | FTP | other *** search
/ The Hacker Chronicles - A…the Computer Underground / The Hacker Chronicles - A Tour of the Computer Underground (P-80 Systems).iso / miscpub2 / uxu-069.txt < prev    next >
Text File  |  1992-09-26  |  29KB  |  694 lines

  1.  
  2. <><><><><><><><><><><><><><><><><><><>!<><><><><><><><><><><><><><><><><><><><>
  3. #%       ..uXu..                                                   1992      %#
  4. %#                       Underground eXperts United                          #%
  5. #%                                presents...                                %#
  6. %#                                  -=*=-                                    #%
  7. #%                 The European Digest Series Vol.2 Issue #1                 %#
  8. %#        1992                  By THE CHIEF                      ..uXu..    #%
  9. <><><><><><><><><><><><><><><><><><><>!<><><><><><><><><><><><><><><><><><><><>
  10.  
  11.      SPECIAL MANUAL ISSUE    -   SCO XENIX System V TUTORIAL CHAPTER #4 PT.1
  12.  
  13.                                   Contents...
  14.  
  15.                           01.............Introduction
  16.                           02.............Contents In Chapter Four (part 1)
  17.                           03.............Xenix Tutorial Chapter Four (part 1)
  18.                           04.............Recommended
  19.                           05.............End Comments
  20.  
  21.  
  22.  
  23.  
  24.  1. INTRODUCTION
  25.  ---------------
  26.  Welcome to TED Vol.2 Issue #1 - The uXu File #69!
  27.  Well, I know it has been some time since the last TED, but what can you
  28.  do when your life crashes in on you like a car through the front porch?
  29.  Ok, we're back, and we're mean. No, seriously, this is Chapter 4 of the
  30.  XENIX Tutorial series, but only Part 1 (of 2) because of the length of
  31.  this special chapter. The second part will be released in Release #7,
  32.  and you can take that to the bank. Enjoy.
  33.  
  34.  
  35.  
  36.  2. CONTENTS IN CHAPTER FOUR (part 1)
  37.  ------------------------------------
  38.  
  39.  CHAPTER 4 (part 1)
  40.  
  41.  Working With Files and Directories
  42.  _________________________________________________________________________
  43.  
  44.  
  45.  SCO XENIX System V TUTORIAL
  46.  
  47.  
  48.    4.1 Introduction
  49.  
  50.    4.2 Working With Directories
  51.  
  52.        4.2.1 Printing the Name of Your Working Directory
  53.        4.2.2 Listing Directory Contents
  54.        4.2.3 Changing Your Working Directory
  55.        4.2.4 Creating Directories
  56.        4.2.5 Removing Directories
  57.        4.2.6 Renaming Directories
  58.        4.2.7 Copying Directories
  59.  
  60.    4.3 Editing Files with vi
  61.  
  62.        4.3.1 Entering Text
  63.        4.3.2 Moving the Cursor
  64.        4.3.3 Deleting Text
  65.        4.3.4 Inserting Text
  66.        4.3.5 Leaving vi
  67.  
  68.    4.4 Printing Files
  69.  
  70.        4.4.1 Using lp
  71.  
  72.  
  73.  
  74.  
  75.  3. XENIX TUTORIAL CHAPTER FOUR
  76.  ------------------------------
  77.  
  78. _______________________________________________________________________________
  79.  
  80. 4.1                            INTRODUCTION                                 4.1
  81. _______________________________________________________________________________
  82.  
  83.    This chapter explains how to perform the following tasks on a XENIX
  84.    system:
  85.  
  86.  
  87.                 *  Print the name of the current directory,
  88.  
  89.                 *  List directory contents,
  90.  
  91.                 *  Change to another directory,
  92.  
  93.                 *  Create, remove, rename and copy directories,
  94.  
  95.                 *  Use the full-screen text editor <vi> to create files,
  96.  
  97.                 *  Print files,
  98.  
  99.                 *  Display the contents of files,
  100.  
  101.                 *  Delete, combine, rename, move, copy and search for files,
  102.  
  103.                 *  Compare and sort files,
  104.  
  105.                 *  Search for patterns in a file,
  106.  
  107.                 *  Count words, lines and characters in a file,
  108.  
  109.                 *  Use file and directory permissions.
  110.  
  111.  
  112.    This chapter is designed as a tutorial. The best way to use this chapter
  113. is to read it at your terminal, entering commands as instructed in the
  114. examples.
  115.  
  116.    None of the commands described in this chapter is described in great detail.
  117. For a complete explanation of each command, refer to the XENIX User's
  118. Reference.
  119.  
  120. _______________________________________________________________________________
  121.  
  122. 4.2                        WORKING WITH DIRECTORIES                        4.2
  123. _______________________________________________________________________________
  124.  
  125.    Because of the hierarchical structure of the XENIX filesystem, any XENIX
  126. system has many directories and subdirectories. XENIX includes serveral
  127. commands that simplify working in directories. These commands are described
  128. in the following sections.
  129.  
  130. _______________________________________________________________________________
  131.  
  132. 4.2.1           PRINTING THE NAME OF YOUR WORKING DIRECTORY               4.2.1
  133. _______________________________________________________________________________
  134.  
  135.    The directory you are "in" at any given time is your "working" directory.
  136. All commands are executed relative to the working directory. The name of this
  137. directory is given by the <pwd> command, which stands for "print working
  138. directory." To find out what your current working directory is, enter the
  139. following command:
  140.  
  141.                                    <pwd>
  142.  
  143. When you first log in to the system, you are placed in your home directory.
  144.  
  145.  
  146. _______________________________________________________________________________
  147.  
  148. 4.2.2                     LISTING DIRECTORY CONTENTS                      4.2.2
  149. _______________________________________________________________________________
  150.  
  151.    Several related commands are used to list the contents of directories:
  152.  
  153.                <lc>       This command is a variation of the <ls> command.
  154.                           The <ls> command alphabetizes and displays
  155.                           directory contents. The <lc> command alphabetizes
  156.                           directory contents and displays them them in
  157.                           columnar format.
  158.  
  159.                <lf>       This command does the same as <lc>, and it also
  160.                           marks directories with a slash (/) and executable
  161.                           files (computer programs) with an asterisk (*).
  162.  
  163.    Enter the following command to list the contents of /usr/bin:
  164.  
  165.                <lc /usr/bin>
  166.  
  167.    This directory contains many of the executable files with which you work
  168. in the XENIX environment. Entering <lc> with no directory name lists the
  169. contents of the current directory.
  170.  
  171.    The <l> command is also useful. It is equivalent to the <ls -l> command,
  172. which produces a "long" listing of a directory's contents. The output of this
  173. command looks like the following listing:
  174.  
  175.  
  176.           -------------------------------------------------------------
  177.           total 338
  178.           -rw-rw-r--  1 markt pub   4448 Mar   1 09:16  1.intro.00
  179.           -rw-rw-r--  1 markt pub   4457 Mar   1 09:29  1.intro.s
  180.           -rw-rw-r--  1 markt pub  33836 Mar   1 09:30  2.concepts.00
  181.           -rw-rw-r--  1 markt pub  35096 Mar   1 12:49  2.concepts.s
  182.           -rw-rw-r--  1 markt pub  52197 Mar   1 15:09  3.basic.s
  183.           -rw-rw-rw-  1 markt pub  39835 Feb  16 11:02  4.advan.s
  184.           -------------------------------------------------------------
  185.  
  186.    Reading from left to right, the information given for each file or
  187. directory by the <l> command includes:
  188.  
  189.  
  190.                             *  Permissions
  191.  
  192.                             *  Number of links
  193.  
  194.                             *  Owner
  195.  
  196.                             *  Group
  197.  
  198.                             *  Size in bytes
  199.  
  200.                             *  Time of last modification
  201.  
  202.                             *  Filename
  203.  
  204.  
  205.    The figure at the top lists the total number of "blocks" used on the disk
  206. to store these files. A single block is 512 bytes. 338 blocks, or 173056 bytes,
  207. are needed to store the files listed above.
  208.  
  209.  
  210. _______________________________________________________________________________
  211.  
  212. 4.2.3                  CHANGING YOUR CURRENT DIRECTORY                    4.2.3
  213. _______________________________________________________________________________
  214.  
  215.    Your working directory represents your location in the filesystem. To
  216. move to a new location in the XENIX filesystem, use the <cd> command.
  217.  
  218.    Entering <cd> with no arguments places you in your home directory. Try it.
  219. Enter <cd>. To be sure you are now in your home directory, enter <pwd>.
  220.  
  221.    To move to a directory other than your home directory, you must specify
  222. that directory as an argument to the <cd> command. For example, enter the
  223. following command to move to /usr/bin:
  224.  
  225.                                   <cd /usr/bin>
  226.  
  227.    Verify that uou are in /usr/bin by entering <pwd>.
  228.  
  229.    Change to the "root" directory by entering the following command:
  230.  
  231.                                   <cd />
  232.  
  233.    The root director is at the "top" of the filesystem. All other directories
  234. are "below" it. Enter <lf> to examine the files and directories in the root
  235. directory. Then enter <cd> to return to your home directory. (For more
  236. information on the root directory, refer to Chapter 2 of this tutorial.)
  237.  
  238.    Some shorthand notation is available to help you move quickly through
  239. the filesystem. To move up one directory from your current directory,
  240. enter:
  241.  
  242.                                   <cd ..>
  243.  
  244.    Enter the following command to move up two directories:
  245.  
  246.                                   <cd ../..>
  247.  
  248.    If you entered this latter command from your home directory, you are
  249. probably in the root directory. Verify this by entering <pwd>.
  250.  
  251.  
  252. _______________________________________________________________________________
  253.  
  254. 4.2.4                          CREATING DIRECTORIES                       4.2.4
  255. _______________________________________________________________________________
  256.  
  257.    To create a subdirectory in your working directory, use the <mkdir> command.
  258. Enter <cd> to move to your home directory and then enter the following command
  259. to create a subdirectory named 'tempdir':
  260.  
  261.                                 <mkdir tempdir>
  262.  
  263.    Verify that 'tempdir' exists with the <lf> command. Change to 'tempdir'
  264. with the <cd> command and verify that 'tempdir' is empty with another <lf>
  265. command. Finally, use the <touch(C)> command to create two empty files in
  266. 'tempdir':
  267.  
  268.                             <touch tempfile1 tempfile2>
  269.  
  270.    Enter <lf> one more time to verify that 'tempfile1' and 'tempfile2' were
  271. created.
  272.  
  273.    You can only create subdirectories in a directory if you have write
  274. permission in that directory. If you do not have write permission and you
  275. use <mkdir> to create a subdirectory, you see the follwing message:
  276.  
  277.                   [mkdir: cannot access 'directory_name']
  278.  
  279.    In this message, 'directory_name' refers to the directory in which you
  280. attepted to create a subdirectory. Verify this by trying to create a
  281. subdirectory in the /etc directory, a directory in which you probably do not
  282. have write permission:
  283.  
  284.                             <mkdir /etc/temp>
  285.  
  286.  
  287. _______________________________________________________________________________
  288.  
  289. 4.2.5                        REMOVING DIRECTORIES                         4.2.5
  290. _______________________________________________________________________________
  291.  
  292.    Use the <rmdir> command to remove a directory. This command will not work
  293. if the directory has files or subdirectories in it. Verify this by moving to
  294. your home directory with the <cd> command and then entering the following
  295. command to remove 'tempdir', the directory created in section 4.2.4:
  296.  
  297.                                <rmdir tempdir>
  298.  
  299.    You should see the following message:
  300.  
  301.                            [rmdir: tempdir not empty]
  302.  
  303.    You must remove 'tempfile1' and 'tempfile2' from 'tempdir' before <rmdir>
  304. deletes 'tempdir'. But don't remove these files just yet. They are used in
  305. another example later in this chapter.
  306.  
  307.  
  308. _______________________________________________________________________________
  309.  
  310. 4.2.6                         RENAMING DIRECTORIES                        4.2.6
  311. _______________________________________________________________________________
  312.  
  313.    To rename a directory, use the <mv> command. For example, <cd> to your
  314. home directory and then enter the following command to rename 'tempdir', the
  315. directory created in section 4.2.4, to 'newdir':
  316.  
  317.                               <mv tempdir newdir>
  318.  
  319.    Verify the name change by entering <lf>. Note that the files in 'newdir'
  320. are unaffected by the change. Verify this by entering the following command:
  321.  
  322.                                   <lf newdir>
  323.  
  324.  
  325. _______________________________________________________________________________
  326.  
  327. 4.2.7                          COPYING DIRECTORIES                        4.2.7
  328. _______________________________________________________________________________
  329.  
  330.    The <copy> command copies directories. Of course, before you can copy the
  331. contents of one directory into another, you must have write permission on the
  332. second directory.
  333.  
  334.    To copy the /newdir directory created in section 4.2.6, and all of the files
  335. in it, to /tmp/newdir, enter the following command:
  336.  
  337.                          <copy $HOME/newdir /tmp/newdir>
  338.  
  339.    In this command, "$HOME" is shorthand for the pathname of your home
  340. directory. You can use it wherever you would enter the pathname of your home
  341. directory.
  342.  
  343.    To verify that the files in $HOME/newdir were copied to /tmp/newdir, enter
  344. the following command:
  345.  
  346.                               <lf /tmp/newdir>
  347.  
  348.    Remove /tmp/newdir by entering the following commands:
  349.  
  350.                               <rm /tmp/newdir/*>
  351.                               <rmdir /tmp/newdir>
  352.  
  353.    The first command removes the files in /tmp/newdir, the second command
  354. removes /tmp/newdir. Verify that /tmp/newdir is removed by entering the
  355. following command:
  356.  
  357.                                  <lf /tmp>
  358.  
  359.    Remove $HOME/newdir by entering the following commands:
  360.  
  361.                               <rm $HOME/newdir/*>
  362.                               <rmdir $HOME/newdir>
  363.  
  364.  
  365. _______________________________________________________________________________
  366.  
  367. 4.3                          EDITING FILES WITH vi                          4.3
  368. _______________________________________________________________________________
  369.  
  370.    The <vi> text editor is a full-screen editor that is included in the XENIX
  371. operating system package. The sections that follow briefly explain how to use
  372. <vi>. For a more complete discussion, see the XENIX User's Guide.
  373.  
  374.  
  375. _______________________________________________________________________________
  376.  
  377. 4.3.1                           ENTERING TEXT                             4.3.1
  378. _______________________________________________________________________________
  379.  
  380.    Change to your home directory with the <cd> command and enter the following
  381. command to create a file called 'tempfile':
  382.  
  383.                                 <vi tempfile>
  384.  
  385.    A message appears indicating that you are creating a new file. You are then
  386. placed in <vi>.
  387.  
  388.    There are two modes in <vi>: INSERT MODE and COMMAND MODE. Use Insert Mode
  389. to add text to a file. User Command Mode to edit existing text in a file.
  390. Since 'tempfile' is empty, press <i> to enter Insert Mode.
  391.  
  392.    Enter the following lines of text, pressing [RETURN] after each line. If you
  393. make a mistake typing, use the [BKSP] key to erase the mistake and continue
  394. typing:
  395.  
  396.                        This tutorial is very, very helpful.
  397.                        It makes learning to use the XENIX system easy.
  398.                        I'm glad I have this tutorial, courtesy of uXu.
  399.  
  400.    After you enter the last line, press the ESC key. It takes you out of
  401. Insert Mode and places you in Command Mode.
  402.  
  403.  
  404. _______________________________________________________________________________
  405.  
  406. 4.3.2                          MOVING THE CURSOR                          4.3.2
  407. _______________________________________________________________________________
  408.  
  409.    Although many cursor-movement commands are available in <vi>, only the
  410. four basic ones are discussed here:
  411.  
  412.  
  413.                   h        When you are in Command mode, pressing the [h]
  414.                            key moves the cursor one character to the left.
  415.  
  416.                   l        When you are in Command mode, pressing the [l]
  417.                            key moves the cursor one character to the right.
  418.  
  419.                   k        When you are in Command mode, pressing the [k]
  420.                            key moves the cursor up one line.
  421.  
  422.                   j        When you are in Command mode, pressing the [j]
  423.                            key moves the cursor down one line.
  424.  
  425.  
  426.    Experiment with these cursor-movement keys on the text you entered. Note
  427. that, if your keyboard has arrow keys, these usually perform in the manner of
  428. [h],[l],[k] and [j].
  429.  
  430.  
  431. _______________________________________________________________________________
  432.  
  433. 4.3.3                            DELETING TEXT                            4.3.3
  434. _______________________________________________________________________________
  435.  
  436.    Deleting text with <vi> is very easy. Different commands allow you to
  437. delete characters, words and entire lines.
  438.  
  439.    To delete a single character, place the cursor on that character with
  440. the cursor-movement keys and press the [x] key. Experiment with the [x] key
  441. by deleting the comma in the first line.
  442.  
  443.    To delete a word, place the cursor on the first character of the word and
  444. press [d][w] (press [d], release it, and press [w]). Experiment with this by
  445. placing the cursor on the first character of 'very' in the first line and
  446. pressing [d][w].
  447.  
  448.    To delete an entire line, place the cursor anywhere on that line and press
  449. [d][d] (press [d], release it, and press [d] again). Experiment with this by
  450. placing the cursor on the second line and pressing [d][d]. Your file should
  451. now contain the following text:
  452.  
  453.              ---------------------------------------------------
  454.              This tutorial is very helpful.
  455.              I'm glad I have this tutorial, courtesy of uXu.
  456.              ---------------------------------------------------
  457.  
  458.  
  459. _______________________________________________________________________________
  460.  
  461. 4.3.4                            INSERTING TEXT                           4.3.4
  462. _______________________________________________________________________________
  463.  
  464.    The [i] and [o] keys can be used to insert text. We have already used the
  465. [i] key to enter text in an empty file. To enter additional text on an existing
  466. line, move the cursor to the point where you want the new text to begin, press
  467. [i] to enter Insert mode, enter the text, and press [ESC] to return to Command
  468. mode. For example, move the cursor to the "g" in "glad" in the second line,
  469. press [i], enter the word 'very', press the [SPACEBAR], and press [ESC] to
  470. return to Command mode. The second line should now be:
  471.  
  472.                ----------------------------------------------------
  473.                I'm very glad I have this tutorial, courtesy of uXu.
  474.                ----------------------------------------------------
  475.  
  476.    The [o] key can be used to insert a new line. To use it, move the cursor
  477. to the line directly above the place in the file where the new line is to be
  478. inserted and press [o]. A new line is inserted, with the cursor placed at the
  479. beginning. You are also automatically placed in Insert mode. Try this by
  480. moving the cursor to the second line of 'tempfile' and press [o]. Now enter
  481. more text. Press [ESC] when you are finished.
  482.  
  483.  
  484. _______________________________________________________________________________
  485.  
  486. 4.3.5                              LEAVING vi                             4.3.5
  487. _______________________________________________________________________________
  488.  
  489.    Most of the time, you will want to save your file before leaving <vi>. To
  490. do this, enter Command mode and type <:x>. This command saves the file you
  491. are editing and returns you to the XENIX prompt.
  492.  
  493.    In some cases, you will want to leave <vi> without saving your work. To
  494. do this, enter Command mode and type <:q!>. This command returns you to the
  495. XENIX prompt, without saving the changes that you made to your file.
  496.  
  497.    Leave 'tempfile' by pressing <:x>. Re-enter 'tempfile' by entering the
  498. following command:
  499.  
  500.                                   <vi tempfile>
  501.  
  502.    Insert some text using either the [i] or the [o] key, press [ESC] and
  503. then enter <q!> to quit without saving your changes. Display 'tempfile' by
  504. entering the following command:
  505.  
  506.                                   <cat tempfile>
  507.  
  508.    You will notice that the last set of changes you made do not appear. Remove
  509. 'tempfile' by entering the following command:
  510.  
  511.                                    <rm tempfile>
  512.  
  513.  
  514. _______________________________________________________________________________
  515.  
  516. 4.4                             PRINTING FILES                              4.4
  517. _______________________________________________________________________________
  518.  
  519.    To print files, use the <lp> command. This is one of a group of commands
  520. known as the "lineprinter" commands. The lineprinter commands are easy to use
  521. and very flexible. With a few simple commands, you can print multiple copies
  522. of a file, cancel a print request, or ask for a special option on a particular
  523. printer. Check with your system administrator to find out what lineprinters
  524. and printer options are available on your system.
  525.  
  526.  
  527. _______________________________________________________________________________
  528.  
  529. 4.4.1                              USING lp                               4.4.1
  530. _______________________________________________________________________________
  531.  
  532.    Use <cd> to change to your home directory and enter the following command
  533. to create a file with which you can experiment:
  534.  
  535.                          <cp /etc/motd $HOME/printfile>
  536.  
  537.    This command places a copy of /etc/motd in your home directory, naming it
  538. 'printfile'. The file /etc/motd is the "message of the day file." Its
  539. contents are displayed every time you log in to the XENIX system.
  540.  
  541.   A directory must be "publicly executable" before you can use <lp> to print
  542. any of the files in that directory. This means that other users must have
  543. execute permissions on the directory. Enter the following command to make your
  544. home directory publicly executable:
  545.  
  546.                               <chmod o+x $HOME>
  547.  
  548.    (See "Using File and Directory Permissions" later in this chapter for more
  549. information on <chmod(C)>.)
  550.  
  551.    Enter the following command to print 'printfile':
  552.  
  553.                                <lp printfile>
  554.  
  555.    This command causes one copy of 'printfile' to print on the default printer
  556. on your system. A banner page might be printed along with the file. Note that
  557. you can print several files at once by putting more than one name on the <lp>
  558. command line.
  559.  
  560.    When you print with <lp>, a "request ID" is displayed on your screen. A
  561. request ID might look like the following:
  562.  
  563.                                  pr4-532
  564.  
  565.    The first part (pr4) is the name of the printer on which your file is
  566. printed. The second part (532) identifies your job number. Should you later
  567. wish to cancel your print request or check its status, you will need to
  568. remember your request ID. (Cancelling and checking on print requests are
  569. discussed below.)
  570.  
  571.   You can also use <lp> with pipes. For example, enter the following command
  572. to sort and then print a copy of /etc/passwd, the file that contains system
  573. account information:
  574.  
  575.                            <sort /etc/passwd | lp>
  576.  
  577.    (For more information on <sort(C)>, see "Sorting Files" later in this
  578. chapter.)
  579.  
  580.  
  581. _______________________________________________________________________________
  582.  
  583.  
  584.  4. RECOMMENDED
  585.  --------------
  586.  This section is included in every issue of The European Digest and will
  587.  contain recommended stuff/boards/reading and so on. For this file,
  588.  currently active newsletters (+ those we want back):
  589.  
  590.  
  591.            1.    PHRACK          - Top rated, with Issue 37 as the
  592.                                    latest one, and the best since
  593.                                    the early days of Phrack. Dispater
  594.                                    as the editor doing a fantastic job.
  595.  
  596.            2.    CUD             - Currently out with Vol.4 Issue 17
  597.                                    still rules the computer underground
  598.                                    news-scene, with hot topics and good
  599.                                    discussions, although they seem to
  600.                                    cover stories more briefly and with
  601.                                    shorter 'life-length' and few follow-
  602.                                    ups than before.
  603.  
  604.            3.    NIA             - Yes, Network Information Access is
  605.                                    still alive, though not very active.
  606.                                    I recently got Issue 73 which had
  607.                                    a couple of interesting sections.
  608.                                    Hope you guys keep publishing this
  609.                                    one more often though.
  610.  
  611.  
  612.     These are the ones we wish still were active:
  613.  
  614.  
  615.            1.    TSR              - The Syndicate Report.. Yes, what a
  616.                                     great publication it was. Always
  617.                                     covering the top-stories, from far
  618.                                     away and near, from others reporting
  619.                                     the news to The Sensei, and from The
  620.                                     Sensei himself. We miss it.
  621.  
  622.            2.    ATI              - Activist Times Inc. Though file 57
  623.                                     was published 'quite' recently,
  624.                                     there's no indication for a 58.
  625.                                     It was great because of it's amazingly
  626.                                     different contents. I'd call it 'the
  627.                                     anarchy magazine' if speaking of the
  628.                                     layout and contents.
  629.  
  630.            3.    LOD/H TJ         - The Technical Journals of LOD/H were
  631.                                     something special. Not far from Phrack
  632.                                     and yet more .. technical, as the name
  633.                                     tells you. It's so sad there were only
  634.                                     a few issues.
  635.  
  636.  
  637.  
  638.  5. END COMMENTS
  639.  ---------------
  640.  Okay, let's hope Dispater gets the 38th Phrack out with some international
  641.  news-reports as well as the American ones. If you, Dispater, read this,
  642.  please contact me on one of the boards mentioned below. I have some extras
  643.  for you which you wouldn't want to miss.
  644.  
  645.  I hope TED will be out more often after this "re-birth", but I can't give
  646.  you any promises. If everything goes wrong, TED will cover the European
  647.  Hack/Phreak/Telecom news (in english) instead of what is mentioned below.
  648.  
  649.  The European Digest will not feature Hacking techniques, Phreaking, Carding,
  650.  information about government systems or the basic underground rap. It will 
  651.  be different. It IS different. Manuals, The Underground Scene, Deep Deep
  652.  whatever, and so on. Less 'general rag stuff' and More Miscellaneous stuff.
  653.  Swedish Hacker News will be presented through the 'uXu - Swedish News' series,
  654.  but ONLY in Swedish. English translations will however be published in future
  655.  issues of the well-known underground rag, Phrack Inc.
  656.  
  657.  Check out the Next TED for something special!
  658.  
  659.  You can reach me on the following boards for comments, contributions,
  660.  questions or whatever:
  661.  
  662.  Ripco ][                 [312-528-5020]
  663.  Condemned Reality        [618-397-7702]
  664.  Demon Roach Underground  [806-794-4362]
  665.  Solsbury Hill            [301-428-3268]
  666.  The Stash                [+46-498-22113]
  667.  Sedes Diaboli            [+46-586-43766]
  668.  
  669.  You can't reach me on the following boards anymore. Reason(s) stated below.
  670.  
  671.  Balanced pH              [818] Down
  672.  Land Of Karrus           [215] Down
  673.  Lunatic Labs             [213] Always Busy
  674.  
  675.  The Chief 1992
  676.  
  677.  %&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&
  678.  %                                                                          %
  679.  &  "Congress shall make no law respecting an establishment of religion, or &
  680.  %  prohibitting the free excercise thereof; or abbridging the freedom of   %
  681.  &  speech or of the press; or of the right of the people peaceably to      &
  682.  %  assemble, and to petition the Goverment for a redress of grievances."   %
  683.  &                                                                          &
  684.  %  This work is released according to the above Constitutional rights      %
  685.  &  for INFORMATIONAL PURPOSES ONLY.                                        &
  686.  %                                                                          %
  687.  &%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%&%
  688.  
  689.  ____________________________________________________________________________
  690.  ____________________________________________________________________________
  691.  
  692.  
  693. Downloaded From P-80 International Information Systems 304-744-2253 12yrs+
  694.